/* l.css */
form p {
    display: inline;
}

form * {
    margin: 0.1em;
}

div.BoxedExhibition {
    padding: 0;
    width: 98%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    /* 自动填充，最小200px */
    gap: 0.3em;
}


div.SubmitButton {
    text-align: center;
    display: block;
    width: 8em;
    padding: 0.5em;
    border: 3px solid #000000;
    border-radius: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition-duration: 300ms;
    transition-property: all;
}

div.SubmitButton:hover {
    background-color: aquamarine;
}

div.SubmitButton:active {
    background-color: #f9ff7f;
}

.BoldRed {
    color: red;
    font-weight: 1000;
}

.BoldGreen {
    color: #00bc13;
    font-weight: 1000;
}

.BoldBlue {
    color: #1b5cff;
    font-weight: 1000;
}

.BoldYellow {
    color: #c39800;
    font-weight: 1000;
}

.BoldPurple {
    color: #5000a5;
    font-weight: 1000;
}

.EmphasisBlue{
    display: inline-block;
    font-weight: 900;
    background-color: #a9fff9;
    color:#00469d;
    text-shadow: 1px 1px 2px #8dc0ff;
}

.EmphasisPurple{
    display: inline-block;
    font-weight: 900;
    background-color: #fee0ff;
    color:#89004b;
    text-shadow: 1px 1px 2px #ff6abc;
}

.SupItemTitle {
    color: #1b5cff;
    text-shadow: 1px 1px 2px #5e8bff;
    background-color: #c5ffa8;
}

#CurrentSupCharacters,
#CurrentSupLightcones {
    font-weight: 1000;
}

table {
    margin: 0.1em;
    max-height: 2em;
}

td {
    padding: 0.2em;
    border: 1px solid #000;
    max-height: 1em;
}

td:first-child {
    font-weight: 1000;
}

tr:nth-child(2) {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 800;
}

#M3_E_Result{
    font-size: 1.3em;
}

#M3_Input {
    box-sizing: border-box;
    font-size: 1em;
    min-width: 100%;
}

div.group{
    border: 2px solid #000;
    padding: 0.4em;
    border-radius: 8px;
    margin: 0.3em;
    padding: 0.3em;
}

input.KeyNumberInput {
    margin: 0;
    font-weight: 800;
    font-size: 120%;
}

textarea.AdvancedPoolFilter {
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2em;
    font-weight: 800;
    min-height: 3em;
    min-width: 100%;
    resize: vertical;
}

textarea.AdvancedPoolFilter:focus {
    background-color: #f9ff7f;
    text-shadow: 0px 0px 2px #c4c4c4;
}

div.ScommonSelectors div div.card {
    display: inline-block;
    border: 2px solid #000;
    border-radius: 5px;
    padding: 0.3em;
    margin: 0.2em;
    cursor: pointer;
    transition-property: all;
    transition-duration: 200ms;
}

div.ScommonSelectors div div.card:hover {
    color: #fff;
    background-color: #9f9f9f;
    text-shadow: 1px 1px 3px #fff;
}

.CenteredText {
    text-align: center;
}

div#ScommonSelector_Inclusion,
div#ScommonSelector_Exclusion {
    font-weight: 800;
}


div#ScommonSelector_Inclusion div::before {
    content: "✓ ";
    color: #00bc13;

}

div#ScommonSelector_Exclusion div::before {
    color: red;
    content: "× ";
}

@keyframes gradient-move-total {
    0% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}